home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / ddeexamp.zip / GLOBAL.BAS < prev    next >
BASIC Source File  |  1993-07-08  |  696b  |  21 lines

  1. Global CurrentMode As String
  2. Global OldMode As String
  3. Global displaymode As Integer
  4. Global Const display = 0
  5. Global Const entry = 1
  6.  
  7. ' LinkMode (forms and controls)
  8. ' Global Const NONE = 0         ' 0 - None
  9. Global Const LINK_SOURCE = 1    ' 1 - Source (forms only)
  10. Global Const LINK_AUTOMATIC = 1 ' 1 - Automatic (controls only)
  11. Global Const LINK_MANUAL = 2    ' 2 - Manual (controls only)
  12. Global Const LINK_NOTIFY = 3    ' 3 - Notify (controls only)
  13.  
  14. ' LinkMode (kept for VB1.0 compatibility, use new constants instead)
  15. Global Const HOT = 1    ' 1 - Hot (controls only)
  16. Global Const SERVER = 1 ' 1 - Server (forms only)
  17. Global Const COLD = 2   ' 2 - Cold (controls only)
  18.  
  19.  
  20.  
  21.